home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 47.7z / BS1 part 47 / ImageMaster RT v1.50b (1994)(Black Belt Systems)(Disk 4 of 7)[HD].7z / ImageMaster RT v1.50b (1994)(Black Belt Systems)(Disk 4 of 7)[HD].adf / apa.lzh.parta / hlp_arexx5 < prev    next >
Text File  |  1994-04-08  |  20KB  |  802 lines

  1. \ApAssist
  2. \: - This is the Quick Help for the ARexx in IM R/t -
  3. \: ----------------------------------------------------------
  4. \:   Written by David E. Patterson
  5. \: ----------------------------------------------------------
  6.  
  7. \font topaz.font 8
  8. \tc 1
  9. \wr
  10. \lj
  11. \dd "imh_descriptor"
  12.  
  13. \index "hlp_arexx2/askyn-cellular"
  14. \toc "imh_toc/toc"
  15. \help "aa_help/help
  16.  
  17. \node "asterize"
  18. \title "Asterize"
  19. \next "astprofile"
  20. \prev ""
  21. \{ \tc 15 Asterize/Ast \} - Puts a star-shaped effect on the screen.
  22.  
  23. \{ \nw    
  24. Usage - '\{ \tc 15 asterize <red> <green> <blue> <width> <centersat> 
  25.           <taper> <arms> <rotation angle> <additive> <center hot spot\} ' 
  26.  
  27. \{ \ce \nw or\}        
  28.         
  29.         '\{ \tc 15 ast <red> <green> <blue> <width> <centersat>
  30.          <taper> <arms> <rotation angle> <additive> <center hot spot>'\} \}
  31.  
  32. \{ \nw
  33.         <red>               value: 0 - 255
  34.         <green>             value: 0 - 255
  35.         <blue>              value: 0 - 255
  36.         <width>             value: 1 - 100
  37.         <centersat>         value: 0 - 100
  38.         <taper>                 On/Off
  39.         <arms>              value: 1 - 100
  40.         <rotation angle>    value: 0 - 360 degrees
  41.         <additive>              On/Off
  42.         <center hot spot>       On/Off\}
  43.  
  44. \{ \ra \image "Clips/Bigsplat.pic" l 10 \cap
  45. It is important to remember that the \{ \tc 15 <taper>\} , \{ \tc 15 <arms>\} , and
  46. \{ \tc 15 <rotation angle> \} do not need to be specified.  If they are
  47. not altered, they will default to the last asterization settings for those
  48. values.  The sample script does not contain the value for \{ \tc 15 <rotation
  49. angle>\} .  It is also important to remember that if you do not use the \{
  50. \ts b \tc 15 Astprofile \} command, then the last setting of the arm profile
  51. will be used.\}
  52.  
  53. \{ \ts bu Sample Script\} :
  54. \{ \nw    
  55. options results;
  56. 'askrgb';
  57. colors = result;
  58. parse var colors red','grn','blu;
  59. 'askprop "Width(in pixels):"10 1 100';
  60. size=result;
  61. 'askprop % Center Saturation Percent: 50 0 100';
  62. satur=result;
  63. 'askyn "Taper ON" "Taper OFF"';
  64. taper = result;
  65. 'askprop "Number of arms: 50 0 100';
  66. arms = result;
  67. options;
  68. '\{ \tc 15 asterize\} 'red grn blu size satur taper arms;
  69. 'redraw';\}
  70.     
  71. * User Interface: \{ \tc 15 Process Panel 
  72.                       Special Effects
  73.                           Asterize\}
  74.  
  75. \endnode
  76.  
  77. \node "astprofile"
  78. \title "Astprofile"
  79. \next "autoactivate"
  80. \prev "asterize"
  81. \{ \tc 15 Astprofile \} - Allows you to alter the Asterization graph or get
  82. the values of the graph.
  83.  
  84. The \{ \tc 15 Astprofile \} command allows you to alter the asterization
  85. graph, and should be used with the Asterize function.  There is also a
  86. setting for the use of the \{ \ts b Reflective \} tool.  The next call to \{
  87. \tc 15 Astprofile \} allows you to determine the graph position and level.
  88. If the level value is not set, then only the position will be returned.  To
  89. alter the graph set a loop to find the position , and then alter the level.
  90. The graph has a total of 201 positions.  Remember that the loop will be half
  91. as long if the \{ \ts b Reflect \} setting is on.
  92.  
  93. \nw    
  94. Usage -  First Call:
  95.         '\{ \tc 15 astprofile <reflect> 0\} ' (off)
  96.         '\{ \tc 15 astprofile <reflect> 1\} ' (on)
  97.         
  98.          Second Call:
  99.         '\{ \tc 15 astprofile <position> <level>\} '       
  100.  
  101. \{ \ts bu Sample Script\} :
  102. '\{ \tc 15 astprofile reflect 1\} '
  103. do i=0 to 200
  104.  j = i * 255/200;
  105.  '\{ \tc 15 astprofile '||i||' '||j\} ;
  106.  end
  107. 'rect 100 100 300 300';
  108. 'asterize 255 0 0 20 10 0 5 30';
  109. 'finish';
  110.  
  111. \endnode
  112.  
  113.  
  114. \node "autoactivate"
  115. \title "Auto Activate"
  116. \next "autoprimary"
  117. \prev "asterize"
  118. \{ \tc 15 Autoactivate \} - Changes automatic re-activation of main control
  119. panel.
  120.  
  121. \nw    
  122. Usage - '\{ \tc 15 autoactivate 0\} ' (off)
  123.         '\{ \tc 15 autoactivate 1\} ' (on)
  124.             
  125. \{ \ts bu Sample Script\} :
  126.              
  127. options results;
  128. 'askyn "Autoactivate ON" "Autoactivate OFF"';
  129. flag = result;
  130. options;
  131. '\{ \tc 15 autoactivate\} ' flag;
  132.   
  133. * User Interface: \{ \tc 15  Display Panel
  134.                        Auto-Activate\}
  135.  
  136. \endnode
  137.  
  138. \node "autoprimary"
  139. \title "Auto Primary"
  140. \next "autoredraw"
  141. \prev "autoactivate"
  142. \{ \tc 15 Autoprimary \} - Makes newly allocated buffer the primary buffer.
  143.  
  144. This directs the placement of new buffers.  In Mode 0, the new buffer does
  145. not become the primary unless there is no Primary Buffer.  In Mode 1, the new
  146. buffer always becomes the Primary Buffer.
  147.     
  148. \nw    
  149. Usage - '\{ \tc 15 autoprimary <mode>\} '
  150.     
  151. \{ \ts bu Sample Script\} :
  152.              
  153. options results;
  154. 'askyn "Autoprimary OFF" "Autoprimary ON"';
  155. flag = result;
  156. options;
  157. '\{ \tc 15 autoprimary\} ' flag;
  158.     
  159. \endnode
  160.  
  161. \node "autoredraw"
  162. \title "Auto Redraw"
  163. \next "autosize"
  164. \prev "autoprimary"
  165. \{ \tc 15 Autoredraw \} - Turns redraw on or off.
  166.  
  167. \nw    
  168. Usage - '\{ \tc 15 autoredraw <mode>\} '
  169.     
  170. \{ \ts bu Sample Script\} :
  171.             
  172. options results;
  173. 'askyn "Autoredraw OFF" "Autoredraw ON"';
  174. flag = result;
  175. options;
  176. '\{ \tc 15 autoredraw\} ' flag;
  177.     
  178. \endnode
  179.  
  180. \node "autosize"
  181. \title "Autosize"
  182. \next "backin"
  183. \prev "autoredraw"
  184. \{ \tc 15 Autosize \} - This command can be used to turn the autosize control
  185. on and off.  If this control is on, the fade length of a brush and the length
  186. of a range will automatically be set to the length of the line that is drawn.
  187. If this control is off, the fade length will default to the fade length
  188. setting, and the range will cycle based on the number of colors in the range.
  189. The fade length can be set using an arexx command (fadelength) or can be set
  190. in the \{ \ts b Draw Mode \} panel.
  191.  
  192. \nw    
  193. Usage - '\{ \tc 15 autosize <mode>\} '
  194.  
  195. Where the mode is auto size on or off (1 or 0). 
  196.  
  197. \{ \ts bu Sample Script\} :
  198. /* arexx Linemode Example */
  199. address('IM_Port');
  200. 'newline';
  201. '\{ \tc darkblue autosize 1\} ';
  202. 'linemode 1';
  203. 'move 30 30';
  204. 'draw 30 270';
  205. 'stroke';
  206. 'finish';
  207.  
  208. \endnode
  209.  
  210. \node "backin"
  211. \title "Backin"
  212. \next "backuptoundo"
  213. \prev "autosize"
  214. \{ \tc 15 Backin \} - This command was originally used for compatibility with
  215. the \{ \ts b 'jackin' \} command, but is no longer needed.  Use the \{ \ts b
  216. 'plugin' \} command instead of backin.
  217.  
  218. See Also: \{ \nw \ts b \link "Developing PI Modules" "imdoc:imh_custom/custom"
  219.           \link "        Jackin       " "imdoc:hlp_arexx8/jackin"
  220.           \link "        Plugin       " "imdoc:hlp_arexx9/plugin"
  221. \}
  222.  
  223. \endnode
  224.  
  225. \node "backuptoundo"
  226. \title "Backup to Undo"
  227. \next "balance"
  228. \prev "backin"
  229. \{ \tc 15 Backuptoundo \} - Copies the current primary buffer, making an UNDO
  230. possible.
  231.    
  232. Used before a process is performed to copy the initial contents of the
  233. primary buffer into the UNDO buffer, making an Undo possible. 
  234.     
  235. \nw   
  236. Usage - '\{ \tc 15 backuptoundo\} '
  237.     
  238. \{ \ts bu Sample Script\} :
  239.     
  240. '\{ \tc 15 backuptoundo\} ';
  241. 'area';
  242. 'areafill 100 120 190';
  243.  
  244. \endnode
  245.  
  246. \node "balance"
  247. \title "Balance"
  248. \next "blenddefs"
  249. \prev "backuptoundo"
  250. \{ \tc 15 Balance \} - White correction.
  251.     
  252. This Arexx command will determine the correction necessary to make the
  253. selected area 100% saturated white, and then will carry out the correction.
  254.  
  255. \nw    
  256. Usage - '\{ \tc 15 balance\} ' 
  257.     
  258. \{ \ts bu Sample Script\} :
  259.     
  260. 'area';
  261. '\{ \tc 15 balance\} ';
  262.     
  263. See also: \{ \ts b \link "gray" "imdoc:hlp_arexx7/gray"\}  
  264.        
  265. * User Interface: \{ \tc 15 Process Panel
  266.                       Standard Adjustments
  267.                           White Balance\}
  268.  
  269. \endnode
  270.  
  271. \node "blenddefs"
  272. \title "Blend Definitions"
  273. \next "blendext"
  274. \prev "balance"
  275. \{ \tc 15 Blenddefs \} - Returns path and extension of a saved blend.
  276.  
  277. \nw    
  278. Usage - '\{ \tc 15 blenddefs\} '
  279.    
  280. \{ \ts bu Sample Script\} :
  281.     
  282. options results;
  283. '\{ \tc 15 blenddefs\} '
  284. parse var result path ','extension;
  285. options;
  286.  
  287. See also: \{ \ts b \link "imagedefs  " "imdoc:hlp_arexx7/imagedefs"  
  288.           \link "macrodefs  " "imdoc:hlp_arexx8/macrodefs"
  289.           \link "palettedefs" "imdoc:hlp_arexx9/palettedefs"  
  290.           \link "renderdefs " "imdoc:hlp_arexx10/renderdefs"\}
  291.               
  292.  
  293. \endnode
  294.  
  295. \node "blendext"
  296. \title "Blend Extensions"
  297. \next "blendload"
  298. \prev "blenddefs"
  299. \{ \tc 15 Blendext \} - Set a new extension for loading and saving blends.
  300.  
  301. \nw    
  302. Usage - '\{ \tc 15 blendext <newext>\} '
  303.     
  304. \{ \ts bu Sample Script\} :
  305.     
  306. '\{ \tc 15 blendext .bld\} '; 
  307.   
  308. See Also: \{ \ts b \link "imageext  " "imdoc:hlp_arexx7/imageext" 
  309.           \link "macroext  " "imdoc:hlp_arexx8/macroext"
  310.           \link "paletteext" "imdoc:hlp_arexx9/paletteext"
  311.           \link "renderext " "imdoc:hlp_arexx10/renderext"\}
  312.     
  313. * User Interface: \{ \tc 15    Setup Panel
  314.                         Blend Ext\}
  315. \endnode
  316.  
  317. \node "blendload"
  318. \title "Blend Load"
  319. \next "blendpath"
  320. \prev "blendext"
  321. \{ \tc 15 Blendload \} -  Loads a blend.
  322.  
  323. \nw    
  324. Usage - '\{ \tc 15 blendload <blendname>\} ' (without path or extension)
  325.     
  326. \{ \ts bu Sample Script\} :
  327.  
  328. 'blendpath work:blends';
  329. '\{ \tc 15 blendload myfile.ibp\} ';
  330. 'merge'; 
  331.     
  332. See Also:  \{ \ts b \link "loadasblend     " "imdoc:hlp_arexx8/loadasblend"
  333.            \link "loadasbrush     " "imdoc:hlp_arexx8/loadasbrush"
  334.            \link "loadasprimary   " "imdoc:hlp_arexx8/loadasprimary"
  335.            \link "loadassecondary " "imdoc:hlp_arexx8/loadassecondary"
  336.            \link "loadimask       " "imdoc:hlp_arexx8/loadimask"    
  337.            \link "loadmask        " "imdoc:hlp_arexx8/loadmask"\}
  338.                         
  339.  
  340. * User Interface:\{ \tc 15     Process Panel
  341.                            Load Blend\}
  342.  
  343. \endnode
  344.  
  345. \node "blendpath"
  346. \title "Blend Path"
  347. \next "Blueadj"
  348. \prev "blendload"
  349. \{ \tc 15 Blendpath \} - Set new path for loading and saving blends.
  350.  
  351. \nw    
  352. Usage - '\{ \tc 15 blendpath <newpath>\} '
  353.    
  354. \{ \ts bu Sample Script\} :
  355.  
  356. '\{ \tc 15 blendpath work:blends\} ';
  357. 'blendload myfile.ibp';
  358. 'merge'; 
  359.        
  360. See Also: \{ \ts b \link "imagepath  " "imdoc:hlp_arexx7/imagepath"
  361.           \link "macropath  " "imdoc:hlp_arexx8/macropath" 
  362.           \link "palettepath" "imdoc:hlp_arexx9/palettepath"
  363.           \link "renderpath " "imdoc:hlp_arexx10/renderpath"\}
  364.  
  365. * User Interface: \{ \tc 15    Setup Panel
  366.                         Blend Path\}
  367.                             
  368. \endnode
  369.  
  370. \node "blueadj"
  371. \title "Blue Adjust"
  372. \next "bluecont"
  373. \prev "blendpath"
  374. \{ \tc 15 Blueadj \} - Changes the blue brightness of selected area.
  375.  
  376. \nw    
  377. Usage - '\{ \tc 15 blueadj <amount>\} '
  378.     
  379. \{ \tc 15 Amount: 0 - 100\}
  380.             
  381. \{ \ts bu Sample Script\} :
  382.     
  383. 'area';
  384. '\{ \tc 15 blueadj 89\} ';
  385.     
  386. See Also: \{ \ts b \link "greenadj" "imdoc:hlp_arexx7/greenadj"
  387.           \link "redadj  " "imdoc:hlp_arexx10/redadj"\}
  388.               
  389. * User Interface: \{ \tc 15 Process Panel
  390.                         R,G,B Corrections            
  391.                             Blue\}
  392. \endnode
  393.  
  394. \node "bluecont"
  395. \title "Blue Contrast"
  396. \next "blur"
  397. \prev "blueadj"
  398. \{ \tc 15 Bluecont \} - Changes the blue contrast for a selected area.
  399.  
  400. \nw    
  401. Usage - '\{ \tc 15 bluecont <%>\} '
  402.  
  403. \{ \ts bu Sample Script\} :
  404.  
  405. 'area';
  406. '\{ \tc 15 bluecont 89\} ';
  407.     
  408. See Also: \{ \ts b \link "greencont" "imdoc:hlp_arexx7/greencont" 
  409.           \link "redcont  " "imdoc:hlp_arexx10/redcont"\}
  410.               
  411. * User Interface: \{ \tc 15  Process Panel
  412.                        R,G,B Corrections
  413.                           Blue Cont.\}
  414.  
  415. \endnode
  416.  
  417. \node "blur"
  418. \title "Blur"
  419. \next "bprint"
  420. \prev "bluecont"
  421. \{ \tc 15 Blur \} - Creates a motion blur effect. 
  422.  
  423. \nw    
  424. Usage - '\{ \tc 15 blur <length> <direction> [angle]\} '  
  425.     
  426. \{ \tc 15 length     -    in pixels\}
  427.     
  428. \{ \tc 15 direction  -    0 = up 
  429.                 1 = right
  430.                 2 = down
  431.                 3 = left 
  432.                 4 = arbitrary\}
  433.                     
  434. \{ \tc 15 angle      -    angle of arbitrary direction\}
  435.     
  436. \{ \ts bu Sample Script:\}
  437.     
  438. 'area';
  439. '\{ \tc 15 blur 30 2 45\} ';
  440.     
  441. See Also: \{ \ts b \link "smear" "imdoc:hlp_arexx11/smear"
  442.           \link "warp " "imdoc:hlp_arexx12/warp"\}
  443.  
  444. * User Interface: \{ \tc 15 Process Panel
  445.                        Geometric
  446.                            Motion Blur\}
  447.  
  448. \endnode
  449.  
  450. \node "bprint"
  451. \title "Blue Print"
  452. \next "bright"
  453. \prev "blur"
  454. \{ \tc 15 Bprint \} - Converts a selected region to blue line art.
  455.  
  456. \nw    
  457. Usage - '\{ \tc 15 bprint\} ' 
  458.     
  459. \{ \ts bu Sample Script\} :
  460.     
  461. 'area';
  462. '\{ \tc 15 bprint\} ';
  463.  
  464. See Also: \{ \ts b \link "lineart" "imdoc:hlp_arexx8/lineart" \}
  465.     
  466. * User Interface: \{ \tc 15 Process Panel
  467.                        Special Effects
  468.                            Blue Print\}
  469.  
  470. \endnode
  471.  
  472. \node "bright"
  473. \title "Bright"
  474. \next "brushtran"
  475. \prev "bprint"
  476. \{ \tc 15 Bright \} - Changes the brightness of a selected area.
  477.  
  478. \nw    
  479. Usage - '\{ \tc 15 bright <%>\} '
  480.     
  481. \{ \ts bu Sample Script\} :
  482.     
  483. 'area';
  484. '\{ \tc 15 bright 40\} ';
  485.     
  486. See Also: \{ \ts b \link "contrast" "imdoc:hlp_arexx6/contrast"\}
  487.  
  488. * User Interface: \{ \tc 15Process Panel
  489.                      Standard Adjustments
  490.                         Brightness\}
  491.  
  492. \endnode
  493.  
  494. \node "brushtran"
  495. \title "Brush Transparency"
  496. \next "buffer"
  497. \prev "bright"
  498. \{ \tc 15 Brushtran \} - The brushtran command is used to specify the brush
  499. transparency for painting in Imagemaster.  The transparency can be set to
  500. additive transparency, absolute transparency, or no transparency.
  501.  
  502. \nw    
  503. Usage - '\{ \tc 15 brushtran ON/ABS/OFF\} '
  504.  
  505. \{ \ts bu Sample Script\} :
  506. /* arexx Brush Transparency Example */
  507. address('IM_Port');
  508. 'newline';
  509. 'linemode brush';
  510. 'brushtran ON';
  511. 'move 0 0';
  512. 'draw 320 400';
  513. 'stroke';
  514. 'finish';
  515.  
  516. \endnode
  517.  
  518. \node "buffer"
  519. \title "Buffer"
  520. \next "buffers"
  521. \prev "brushtran"
  522. \{ \tc 15 Buffer \} - Returns information about a specific buffer.
  523.  
  524. \nw    
  525. Usage - '\{ \tc 15 buffer <buffer_number>\} ' 
  526.     
  527. \{ \ts bu Sample Script\} :
  528. options results;
  529. '\{ \tc 15 buffer 3\} ';
  530. info = result;
  531. options;
  532. parse var info bname','bnumber','xdim','ydim','xdimydim','memused','
  533.                    parentname','parentnumber;
  534. 'newbuff' xdim ydim; 
  535.  
  536. \endnode
  537.  
  538. \node "buffers"
  539. \title "Buffers"
  540. \next "cancel"
  541. \prev "buffer"
  542. \{ \tc 15 Buffers \} - Returns information about all buffers.
  543.  
  544. \nw    
  545. Usage - '\{ \tc 15 buffers\} ' 
  546.     
  547. \{ \ts bu Sample Script\} :
  548.    
  549. options results;
  550. '\{ \tc 15 buffers\} ';
  551. buffs = result;
  552. options;
  553. parse var buffs buffname','buffnumber;
  554.  
  555. \endnode
  556.  
  557. \node "cancel"
  558. \title "Cancel"
  559. \next "caric"
  560. \prev "buffers"
  561. \{ \tc 15 Cancel \} -  Equivalent to hitting the cancel gadget.
  562.  
  563. \nw    
  564. Usage - '\{ \tc 15 cancel\} ' 
  565.     
  566. \{ \ts bu Sample Script\} :
  567.      
  568. if(flag = 0) then;
  569. do
  570. '\{ \tc 15 cancel\} ';
  571. end;
  572.  
  573. \endnode
  574.  
  575. \node "caric"
  576. \title "Caricature"
  577. \next "cdef"
  578. \prev "cancel"
  579. \{ \tc 15 Caric \} - Creates an optical distortion similar to a concave lens.
  580.  
  581. Edges of a selected region are pulled toward the center creating a
  582. caricature.
  583.  
  584. \nw    
  585. Usage - '\{ \tc 15 caric <distortion>\} '
  586.    
  587. \{ \ts bu Sample Script\} :
  588.     
  589. 'area'; 
  590. options results;
  591. 'askprop Distortion%: 50 0 100';
  592. dist = result;
  593. options;
  594. '\{ \tc 15 caric\} ' dist;
  595.     
  596. * User Interface: \{ \tc 15  Process Panel
  597.                       Geometric Transformations
  598.                           Caricature\}
  599.                           
  600. \endnode
  601.  
  602. \node "cdef"
  603. \title "Color Definition"
  604. \next "cellular"
  605. \prev "caric"
  606. \{ \tc 15 Cdef \} - Returns the average RGB, luma and variance of an area. 
  607.  
  608. Examines a selected region and returns red, green, blue, average, luma, and
  609. variance in a text string.
  610.  
  611. \nw    
  612. Usage - '\{ \tc 15 cdef\} ' 
  613.     
  614. \{ \ts bu Sample Script\} :
  615.      
  616. options results;
  617. '\{ \tc 15 cdef\} ';
  618. parse var result red','green','blue','average','variance;
  619. options;
  620.  
  621. * User Interface:\tc 15   Process Panel
  622.                         Define Color
  623.  
  624. \endnode
  625.  
  626. \node "cellular"
  627. \title "Cellular / Cell"
  628. \next "channel"
  629. \prev "cdef"
  630. \{ \tc 15 Cellular / Cell \} - Creates a \{ \ts i glass block effect\} . 
  631.  
  632. Pixels are manipulated as points inside a cell, the resulting effect is
  633. similar to looking through a wall of thick glass bricks.
  634.  
  635. \nw    
  636. Usage - '\{ \tc 15 cellular <red> <green> <blue> <cellsize> <borderflag>\} '
  637.         '\{ \tc 15 cell <red> <green> <blue> <cellsize> <borderflag>\} '
  638.             
  639.             Red:         0 - 255
  640.             Green:       0 - 255
  641.             Blue:        0 - 255
  642.             Cellsize:    (In Pixels)
  643.             Borderflag:  0 = No, 1 = Yes
  644.        
  645. \{ \ts bu Sample Script\} :
  646.     
  647. 'area';
  648. options results;
  649. 'askrgb';
  650. colors = result;
  651. parse var colors red','grn','blu;
  652. 'askprop Cell_Size: 50 0 100';
  653. cell = result;
  654. 'askyn "No Border Flag" "Border Flag"';
  655. flag = result;
  656. options;
  657. '\{ \tc 15 cellular\} ' red grn blu cell flag; 
  658.        
  659. * User Interface: \{ \tc 15   Process Panel
  660.                         Special Effects
  661.                             Point Cellular\}
  662. \endnode
  663.  
  664. \node "channel"
  665. \title "Channel"
  666. \next "clip"
  667. \prev "cellular"
  668. \{ \tc 15 Channel \} - Specifies colors to be affected by a blend.
  669.  
  670. \nw    
  671. Usage - '\{ \tc 15 channel <red> <green> <blue>\} '
  672.     
  673.     Red:     0 = not affected, 1 = affected
  674.     Green:   0 = not affected, 1 = affected
  675.     Blue:    0 = not affected, 1 = affected
  676.      
  677. \{ \ts bu Sample Script\} :
  678.           
  679. 'area';
  680. '\{ \tc 15 channel\} ' 0 1 0; /* green gun only */
  681. 'merge';
  682.     
  683. \endnode
  684.  
  685. \node "clip"
  686. \title "Clip"
  687. \next "cliphalf"
  688. \prev "channel"
  689. \{ \tc 15 Clip \} - Clips selected region to a new buffer
  690.  
  691. A selected region is clipped to a new buffer.  If a buffer name is not
  692. specified the program will automatically generate one.
  693.         
  694. \nw    
  695. Usage - '\{ \tc 15 clip [newname]\} '
  696.     
  697. \{ \ts bu Sample Script\} :
  698.      
  699. 'area';
  700. '\{ \tc 15 clip testbuff\} ';
  701.     
  702. See Also: \{ \ts b \link "cliphalf" "imdoc:hlp_arexx5/cliphalf"\}
  703.     
  704. * User Interface: \{ \tc 15   Process Panel
  705.                        Re-Sizing and Clipping
  706.                            Clip Region\}
  707. \endnode
  708.  
  709. \node "cliphalf"
  710. \title "Clip_Half"
  711. \next "Clip2"
  712. \prev "clip"
  713. \{ \tc 15 Cliphalf \} - Clips selected region to a buffer half it's size.
  714.  
  715. \nw    
  716. Usage - '\{ \tc 15 cliphalf [newname]\} '
  717.     
  718. \{ \ts bu Sample Script\} :
  719.    
  720. 'area';
  721. '\{ \tc 15 cliphalf testbuff\} ';
  722.     
  723. See Also: \{ \ts b \link "clip" "imdoc:hlp_arexx5/clip"\}
  724.     
  725. * User Interface: \{ \tc 15   Process Panel
  726.                        Re-Sizing and Clipping
  727.                            Clip .5 X\}
  728.  
  729. \endnode
  730.  
  731. \node "Clip2"
  732. \title "Clip 2X"
  733. \next "close"
  734. \prev "cliphalf"
  735. \{ \tc 15 Clip2 \} - Doubles the selected region and clips it to a new
  736. buffer.
  737.  
  738. \nw    
  739. Usage - '\{ tc 15 clip [newname]\} ';
  740.     
  741. \{ \ts bu Sample Script\} :
  742.     
  743. 'area';
  744. '\{ \tc 15 clip2 testbuff\} ';
  745.    
  746. See Also: \{ \ts b \link "clip    " "imdoc:hlp_arexx5/clip"
  747.           \link "cliphalf" "imdoc:hlp_arexx5/cliphalf"\}
  748.     
  749. * User Interface: \{ \tc 15   Process Panel
  750.                        Re-Sizing and Clipping
  751.                             Clip2\}
  752.  
  753. \endnode
  754.  
  755. \node "close"
  756. \title "Close"
  757. \next "colchange"
  758. \prev "Clip2"
  759. \{ \tc 15 Close \} - Immediate exit from Imagemaster.
  760.  
  761. Terminates operations immediately, unless used with the optional parameter
  762. prompt.  Adding the word 'prompt' allows the user to close or continue.
  763.     
  764. \nw    
  765. Usage - '\{ \tc 15 close [prompt]\} '
  766.     
  767. \{ \ts bu Sample Script\} :
  768.     
  769. if(flag = 0) then;
  770. do
  771. '\{ \tc 15 close prompt\} ';
  772. end;
  773.     
  774. * User Interface: \{ \tc 15 Exit IM\}
  775.  
  776. \endnode
  777.  
  778. \node "colchange"
  779. \title "Color Change"
  780. \next ""
  781. \prev "close"
  782. \{ \tc 15 Colchange \} - Allows user to preset color change values.
  783.  
  784. Presets the color change values that are used for the grey balance, white
  785. balance, geographic elevations, and shadowed geographic elevations.
  786.     
  787. \nw    
  788. Usage - '\{ \tc 15 colchange <red> <green> <blue> <average> <variance>\} '
  789.         
  790. \{ \TS BU Sample Script\} :
  791.     
  792. 'area';
  793. '\{ \TC 15 colchange 134 106 137 123 137\} ';
  794. 'balance';
  795.      
  796. * User Interface: \{ \tc 15   Process Panel 
  797.                           Standard Adjustments 
  798.                             Color Balance\}
  799.  
  800. \endnode
  801.  
  802.